【例子介绍】c# 实现一对一语音聊天
【相关图片】
【源码结构】
文件清单
└── C#[1].net 语音聊天
└── C#.net 语音聊天
└── MatureVoice
├── bin
│ ├── Debug
│ │ ├── DevComponents.DotNetBar2.dll
│ │ ├── loading.gif
│ │ ├── MatureVoice.exe
│ │ ├── MatureVoice.pdb
│ │ ├── MatureVoice.vshost.exe
│ │ ├── MatureVoice.vshost.exe.manifest
│ │ ├── Microsoft.DirectX.DirectSound.dll
│ │ └── Microsoft.DirectX.dll
│ └── Release
├── ClassDiagram1.cd
├── ClassDiagram2.cd
├── Form1.cs
├── Form1.Designer.cs
├── Form1.resx
├── Form2.cs
├── Form2.Designer.cs
├── Form2.resx
├── ListUsers.cs
├── MatureVoice.csproj
├── MatureVoice.csproj.user
├── MatureVoice.sln
├── MatureVoice.suo
├── Media Player.ico
├── NetChat.cs
├── Program.cs
├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── UpgradeLog.XML
└── VoiceCapture.cs
7 directories, 31 files
评论